home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / gvfs.postinst < prev    next >
Encoding:
Text File  |  2010-12-22  |  472 b   |  22 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4.  
  5.  
  6. if [ "$1" = "configure" ] && dpkg --compare-versions "$2" lt-nl 1.4.0; then
  7.   if pgrep ^gvfsd$ > /dev/null; then
  8.     cat << EOF
  9.  
  10. ************************* WARNING *************************
  11. ** The gvfs protocol has changed in an incompatible way. **
  12. ** You need to RESTART YOUR SESSION AS SOON AS POSSIBLE, **
  13. ** otherwise your applications will start crashing.      **
  14. ***********************************************************
  15.  
  16. EOF
  17.   fi
  18. fi
  19.  
  20. exit 0
  21.  
  22.